home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / editors / emcs1857 / 1857sr~1.zoo / src / dired.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-02  |  12.9 KB  |  483 lines

  1. /* Lisp functions for making directory listings.
  2.    Copyright (C) 1985, 1986, 1991 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* Modified 1991 for 8-bit character support by Howard Gayle.
  22.  *  See chartab.c for details. */
  23.  
  24.  
  25. #include <stdio.h>
  26. #include <sys/types.h>
  27. #include <sys/stat.h>
  28.  
  29. #include "config.h"
  30.  
  31. #ifdef SYSV_SYSTEM_DIR
  32.  
  33. #include <dirent.h>
  34. #define DIRENTRY struct dirent
  35. #define NAMLEN(p) strlen (p->d_name)
  36.  
  37. #else
  38.  
  39. #ifdef NONSYSTEM_DIR_LIBRARY
  40. #include "ndir.h"
  41. #else /* not NONSYSTEM_DIR_LIBRARY */
  42. #include <sys/dir.h>
  43. #endif /* not NONSYSTEM_DIR_LIBRARY */
  44.  
  45. #define DIRENTRY struct direct
  46. #define NAMLEN(p) p->d_namlen
  47.  
  48. extern DIR *opendir ();
  49. extern struct direct *readdir ();
  50.  
  51. #endif
  52.  
  53. #undef NULL
  54.  
  55. #include "lisp.h"
  56. #include "buffer.h"
  57. #include "commands.h"
  58.  
  59. #include "regex.h"
  60. #include "sorttab.h"
  61.  
  62. #define min(a, b) ((a) < (b) ? (a) : (b))
  63.  
  64. /* if system does not have symbolic links, it does not have lstat.
  65.    In that case, use ordinary stat instead.  */
  66.  
  67. #ifndef S_IFLNK
  68. #define lstat stat
  69. #endif
  70.  
  71. Lisp_Object Vcompletion_ignored_extensions;
  72.  
  73. Lisp_Object Qcompletion_ignore_case;
  74.  
  75. DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 3, 0,
  76.   "Return a list of names of files in DIRECTORY.\n\
  77. If FULL is non-NIL, absolute pathnames of the files are returned.\n\
  78. If MATCH is non-NIL, only pathnames containing that regexp are returned.")
  79.   (dirname, full, match)
  80.      Lisp_Object dirname, full, match;
  81. {
  82.   DIR *d;
  83.   char slashfilename[MAXNAMLEN+2];
  84.   char *filename = slashfilename;
  85.   int length;
  86.   Lisp_Object list, name;
  87.  
  88.   /* In search.c */
  89.   extern struct re_pattern_buffer searchbuf;
  90.  
  91.   if (!NULL (match))
  92.     {
  93.       CHECK_STRING (match, 3);
  94.       /* Compile it now so we don't get an error after opendir */
  95. #ifdef VMS
  96.       compile_pattern (match, &searchbuf, buffer_defaults.case_fold_table_v);
  97. #else
  98.       compile_pattern (match, &searchbuf, NULL_SORT_TABLE);
  99. #endif
  100.     }
  101.  
  102.   dirname = Fexpand_file_name (dirname, Qnil);
  103. /**
  104.  **  (sjk)++ typecast o quite gcc
  105.  **/
  106. #ifdef atarist
  107.   if (!(d = opendir ((char *)XSTRING (Fdirectory_file_name (dirname))->data)))
  108. #else
  109.   if (!(d = opendir (XSTRING (Fdirectory_file_name (dirname))->data)))
  110. #endif
  111.     report_file_error ("Opening directory", Fcons (dirname, Qnil));
  112.  
  113.   list = Qnil;
  114.   length = XSTRING (dirname)->size;
  115. #ifndef VMS
  116.   if (length == 0   ||  XSTRING (dirname)->data[length - 1] != '/')
  117.     *filename++ = '/';
  118. #endif /* VMS */
  119.  
  120.   /* Loop reading blocks */
  121.   while (1)
  122.     {
  123.       DIRENTRY *dp = readdir (d);
  124.       int len;
  125.  
  126.       if (!dp) break;
  127.       len = NAMLEN (dp);
  128.       if (dp->d_ino)
  129.     {
  130.       strncpy (filename, dp->d_name, len);
  131.       filename[len] = 0;
  132.       if (NULL (match) ||
  133.           (0 <= re_search (&searchbuf, filename, len, 0, len, 0)))
  134.         {
  135.           if (!NULL (full))
  136.         name = concat2 (dirname, build_string (slashfilename));
  137.           else
  138.         name = build_string (filename);
  139.           list = Fcons (name, list);
  140.         }
  141.     }
  142.     }
  143.   closedir (d);
  144.   return Fsort (Fnreverse (list), Qstring_lessp);
  145. }
  146.  
  147. Lisp_Object file_name_completion ();
  148.  
  149. DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
  150.   2, 2, 0,
  151.   "Complete file name FILE in directory DIR.\n\
  152. Returns the longest string common to all filenames in DIR\n\
  153. that start with FILE.\n\
  154. If there is only one and FILE matches it exactly, returns t.\n\
  155. Returns nil if DIR contains no name starting with FILE.")
  156.   (file, dirname)
  157.      Lisp_Object file, dirname;
  158. {
  159.   /* Don't waste time trying to complete a null string.
  160.      Besides, this case happens when user is being asked for
  161.      a directory name and has supplied one ending in a /.
  162.      We would not want to add anything in that case
  163.      even if there are some unique characters in that directory.  */
  164.   if (XTYPE (file) == Lisp_String && XSTRING (file)->size == 0)
  165.     return file;
  166.   return file_name_completion (file, dirname, 0, 0);
  167. }
  168.  
  169. DEFUN ("file-name-all-completions", Ffile_name_all_completions,
  170.   Sfile_name_all_completions, 2, 2, 0,
  171.   "Return a list of all completions of file name FILE in directory DIR.")
  172.   (file, dirname)
  173.      Lisp_Object file, dirname;
  174. {
  175.   return file_name_completion (file, dirname, 1, 0);
  176. }
  177.  
  178. #ifdef VMS
  179.  
  180. DEFUN ("file-name-all-versions", Ffile_name_all_versions,
  181.   Sfile_name_all_versions, 2, 2, 0,
  182.   "Return a list of all versions of file name FILE in directory DIR.")
  183.   (file, dirname)
  184.      Lisp_Object file, dirname;
  185. {
  186.   return file_name_completion (file, dirname, 1, 1);
  187. }
  188.  
  189. #endif /* VMS */
  190.  
  191. Lisp_Object
  192. file_name_completion (file, dirname, all_flag, ver_flag)
  193.      Lisp_Object file, dirname;
  194.      int all_flag, ver_flag;
  195. {
  196.   DIR *d;
  197.   DIRENTRY *dp;
  198.   int bestmatchsize, skip;
  199.   register int compare, matchsize;
  200.   unsigned char *p1, *p2;
  201.   int matchcount = 0;
  202.   Lisp_Object bestmatch, tem, elt, name;
  203.   struct stat st;
  204.   int directoryp;
  205.   int passcount;
  206.   int count = specpdl_ptr - specpdl;
  207. #ifdef VMS
  208.   extern DIRENTRY * readdirver ();
  209.  
  210.   DIRENTRY *((* readfunc) ());
  211.  
  212.   /* Filename completion on VMS ignores case, since VMS filesys does.  */
  213.   specbind (Qcompletion_ignore_case, Qt);
  214.  
  215.   readfunc = readdir;
  216.   if (ver_flag)
  217.     readfunc = readdirver;
  218.   file = Fupcase (file);
  219. #endif /* VMS */
  220.  
  221.   CHECK_STRING (file, 0);
  222.  
  223.   dirname = Fexpand_file_name (dirname, Qnil);
  224.   bestmatch = Qnil;
  225.  
  226.   /* passcount = 0, ignore files that end in an ignored extension.
  227.      If nothing found then try again with passcount = 1, don't ignore them.
  228.      If looking for all completions, start with passcount = 1,
  229.      so always take even the ignored ones.  */
  230.   for (passcount = !!all_flag; NULL (bestmatch) && passcount < 2; passcount++)
  231.     {
  232. /**
  233.  **  (sjk++) typecast to quite gcc
  234.  **/
  235. #ifdef atarist
  236.       if (!(d = opendir ((char *)XSTRING (Fdirectory_file_name
  237.                       (dirname))->data)))
  238. #else
  239.       if (!(d = opendir (XSTRING (Fdirectory_file_name (dirname))->data)))
  240. #endif
  241.     report_file_error ("Opening directory", Fcons (dirname, Qnil));
  242.  
  243.       /* Loop reading blocks */
  244.       /* (att3b compiler bug requires do a null comparison this way) */
  245.       while (1)
  246.     {
  247.       DIRENTRY *dp;
  248.       int len;
  249.  
  250. #ifdef VMS
  251.       dp = (*readfunc) (d);
  252. #else
  253.       dp = readdir (d);
  254. #endif
  255.       if (!dp) break;
  256.  
  257.       len = NAMLEN (dp);
  258.  
  259.       if (!NULL (Vquit_flag) && NULL (Vinhibit_quit))
  260.         goto quit;
  261.       if (!dp->d_ino
  262.           || len < XSTRING (file)->size
  263.           || 0 <= scmp (dp->d_name, XSTRING (file)->data,
  264.                 XSTRING (file)->size))
  265.         continue;
  266.  
  267.           if (file_name_completion_stat (dirname, dp, &st) < 0)
  268.             continue;
  269.  
  270.           directoryp = ((st.st_mode & S_IFMT) == S_IFDIR);
  271.       tem = Qnil;
  272.           if (!directoryp)
  273.             {
  274.           /* Compare extensions-to-be-ignored against end of this file name */
  275.           /* if name is not an exact match against specified string */
  276.           if (!passcount && len > XSTRING (file)->size)
  277.         /* and exit this for loop if a match is found */
  278.         for (tem = Vcompletion_ignored_extensions;
  279.              CONSP (tem); tem = XCONS (tem)->cdr)
  280.           {
  281.             elt = XCONS (tem)->car;
  282.             if (XTYPE (elt) != Lisp_String) continue;
  283.             skip = len - XSTRING (elt)->size;
  284.             if (skip < 0) continue;
  285.  
  286.             if (0 <= scmp (dp->d_name + skip,
  287.                    XSTRING (elt)->data,
  288.                    XSTRING (elt)->size))
  289.               continue;
  290.             break;
  291.           }
  292.         }
  293.  
  294.       /* Unless an ignored-extensions match was found,
  295.              process this name as a completion */
  296.       if (passcount || !CONSP (tem))
  297.         {
  298.           /* Update computation of how much all possible completions match */
  299.  
  300.           matchcount++;
  301.  
  302.           if (all_flag || NULL (bestmatch))
  303.         {
  304.           /* This is a possible completion */
  305.           if (directoryp)
  306.             {
  307.               /* This completion is a directory; make it end with '/' */
  308.               name = Ffile_name_as_directory (make_string (dp->d_name, len));
  309.             }
  310.           else
  311.             name = make_string (dp->d_name, len);
  312.           if (all_flag)
  313.             {
  314.               bestmatch = Fcons (name, bestmatch);
  315.             }
  316.           else
  317.             {
  318.               bestmatch = name;
  319.               bestmatchsize = XSTRING (name)->size;
  320.             }
  321.         }
  322.           else
  323.         {
  324.           compare = min (bestmatchsize, len);
  325.           p1 = XSTRING (bestmatch)->data;
  326.           p2 = (unsigned char *) dp->d_name;
  327.           matchsize = scmp(p1, p2, compare);
  328.           if (matchsize < 0)
  329.             matchsize = compare;
  330.           /* If this dirname all matches,
  331.              see if implicit following slash does too.  */
  332.           if (directoryp
  333.               && compare == matchsize
  334.               && bestmatchsize > matchsize
  335.               && p1[matchsize] == '/')
  336.             matchsize++;
  337.           bestmatchsize = min (matchsize, bestmatchsize);
  338.         }
  339.         }
  340.     }
  341.       closedir (d);
  342.     }
  343.  
  344.   unbind_to (count);
  345.  
  346.   if (all_flag || NULL (bestmatch))
  347.     return bestmatch;
  348.   if (matchcount == 1 && bestmatchsize == XSTRING (file)->size)
  349.     return Qt;
  350.   return Fsubstring (bestmatch, make_number (0), make_number (bestmatchsize));
  351.  quit:
  352.   if (d) closedir (d);
  353.   Vquit_flag = Qnil;
  354.   return Fsignal (Qquit, Qnil);
  355. }
  356.  
  357. file_name_completion_stat (dirname, dp, st_addr)
  358.      Lisp_Object dirname;
  359.      DIRENTRY *dp;
  360.      struct stat *st_addr;
  361. {
  362.   int len = NAMLEN (dp);
  363.   int pos = XSTRING (dirname)->size;
  364.   char *fullname = (char *) alloca (len + pos + 2);
  365.  
  366.   bcopy (XSTRING (dirname)->data, fullname, pos);
  367. #ifndef VMS
  368.   if (fullname[pos - 1] != '/')
  369.     fullname[pos++] = '/';
  370. #endif
  371.  
  372.   bcopy (dp->d_name, fullname + pos, len);
  373.   fullname[pos + len] = 0;
  374.  
  375.   return stat (fullname, st_addr);
  376. }
  377.  
  378. Lisp_Object
  379. make_time (time)
  380.      int time;
  381. {
  382.   return Fcons (make_number (time >> 16),
  383.         Fcons (make_number (time & 0177777), Qnil));
  384. }
  385.  
  386. DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 1, 0,
  387.   "Return a list of attributes of file FILENAME.\n\
  388. Value is nil if specified file cannot be opened.\n\
  389. Otherwise, list elements are:\n\
  390.  0. t for directory, string (name linked to) for symbolic link, or nil.\n\
  391.  1. Number of links to file.\n\
  392.  2. File uid.\n\
  393.  3. File gid.\n\
  394.  4. Last access time, as a list of two integers.\n\
  395.   First integer has high-order 16 bits of time, second has low 16 bits.\n\
  396.  5. Last modification time, likewise.\n\
  397.  6. Last status change time, likewise.\n\
  398.  7. Size in bytes.\n\
  399.  8. File modes, as a string of ten letters or dashes as in ls -l.\n\
  400.  9. t iff file's gid would change if file were deleted and recreated.\n\
  401. 10. inode number.\n\
  402. \n\
  403. If file does not exists, returns nil.")
  404.   (filename)
  405.      Lisp_Object filename;
  406. {
  407.   Lisp_Object values[11];
  408.   Lisp_Object dirname;
  409.   struct stat s;
  410.   struct stat sdir;
  411.   char modes[10];
  412.  
  413.   filename = Fexpand_file_name (filename, Qnil);
  414. /**
  415.  **  (sjk)++ typecast to quite gcc
  416.  **/
  417. #ifdef atarist
  418.   if (lstat ((char *)XSTRING (filename)->data, &s) < 0)
  419. #else
  420.   if (lstat (XSTRING (filename)->data, &s) < 0)
  421. #endif
  422.     return Qnil;
  423.  
  424.   switch (s.st_mode & S_IFMT)
  425.     {
  426.     default:
  427.       values[0] = Qnil; break;
  428.     case S_IFDIR:
  429.       values[0] = Qt; break;
  430. #ifdef S_IFLNK
  431.     case S_IFLNK:
  432.       values[0] = Ffile_symlink_p (filename); break;
  433. #endif
  434.     }
  435.   values[1] = make_number (s.st_nlink);
  436.   values[2] = make_number (s.st_uid);
  437.   values[3] = make_number (s.st_gid);
  438.   values[4] = make_time (s.st_atime);
  439.   values[5] = make_time (s.st_mtime);
  440.   values[6] = make_time (s.st_ctime);
  441.   /* perhaps we should set this to most-positive-fixnum if it is too large? */
  442.   values[7] = make_number (s.st_size);
  443.   filemodestring (&s, modes);
  444.   values[8] = make_string (modes, 10);
  445. #ifdef BSD4_3 /* Gross kludge to avoid lack of "#if defined(...)" in VMS */
  446. #define BSD4_2 /* A new meaning to the term `backwards compatability' */
  447. #endif
  448. #ifdef BSD4_2            /* file gid will be dir gid */
  449.   dirname = Ffile_name_directory (filename);
  450.   if (dirname != Qnil && stat (XSTRING (dirname)->data, &sdir) == 0)
  451.     values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil;
  452.   else                    /* if we can't tell, assume worst */
  453.     values[9] = Qt;
  454. #else                    /* file gid will be egid */
  455.   values[9] = (s.st_gid != getegid ()) ? Qt : Qnil;
  456. #endif    /* BSD4_2 (or BSD4_3) */
  457. #ifdef BSD4_3
  458. #undef BSD4_2 /* ok, you can look again without throwing up */
  459. #endif
  460.   values[10] = make_number (s.st_ino);
  461.   return Flist (11, values);
  462. }
  463.  
  464. syms_of_dired ()
  465. {
  466.   defsubr (&Sdirectory_files);
  467.   defsubr (&Sfile_name_completion);
  468. #ifdef VMS
  469.   defsubr (&Sfile_name_all_versions);
  470. #endif /* VMS */
  471.   defsubr (&Sfile_name_all_completions);
  472.   defsubr (&Sfile_attributes);
  473.  
  474. #ifdef VMS
  475.   Qcompletion_ignore_case = intern ("completion-ignore-case");
  476.   staticpro (&Qcompletion_ignore_case);
  477. #endif /* VMS */
  478.  
  479.   DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions,
  480.     "*Completion ignores filenames ending in any string in this list.");
  481.   Vcompletion_ignored_extensions = Qnil;
  482. }
  483.